* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Josefin Sans', sans-serif;
}

/* Root Variables */
:root {
  --color: rgb(255 224 232);
  --white: #fff;
}

/* ====================== Navbar ====================== */
nav {
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      position: sticky;
      display: flex;
      padding: 10px 2%;
      justify-content: space-between;
      align-items: center;
      background-color: white;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      
    }

    /* Logo Styling */
    nav img {
      width: 120px;
    }

    /* Navigation Links */
    .nav-links {
      text-align: right;
      color: black;
    }

    .nav-links ul li {
      list-style: none;
      display: inline-block;
      padding: 8px 12px;
      position: relative;
    }

    .nav-links ul li a {
      color: black;
      text-decoration: none;
      font-size: 18px;
    }

    .nav-links ul li:hover::after {
      content: '';
      width: 100%;
      height: 2px;
      background: black;
      display: block;
      margin: auto;
      transition: 0.5s;
    }

    /* Show/hide the hamburger icon for small screens */
    .nav .fa {
      display: none;
    }

    /* Media Query for Small Screens */
    @media (max-width: 700px) {
      .nav .fa {
        display: block;
        font-size: 30px;
        cursor: pointer;
        color: black;
      }

      .nav-links {
        position: fixed;
        background: white;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
      }

      .nav-links ul {
        padding: 30px;
      }

      .nav-links ul li {
        display: block;
      }
    }
    
/* ====================== Header Section ====================== */
.header {
  padding-top: 80px;
  min-height: calc(90vh - 80px);
  width: 100%;
  background-image: url(image/front2.png);
  background-position: center;
  background-size: cover;
  position: relative;
}

.text-box {
  width: 90%;
  max-width: 800px;
  color: var(--white);
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
}

.text-box a {
  text-decoration: none;
}

.text-box h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.text-box > h2 {
  font-size: 28px;
}

.hero-btn {
  display: inline-block;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 14px 32px;
  font-size: 16px;
  background: transparent;
  cursor: pointer;
  margin-top: 40px;
}

.hero-btn:hover {
  border: 1px solid var(--color);
  background: #a7a5a6;
  color: black;
  transition: 0.5s;
}

@media (max-width: 768px) {
  .text-box {
    text-align: center;
  }

  .header {
    padding-top: 70px;
    min-height: calc(90vh - 70px);
  }

  .text-box h1 {
    font-size: 28px;
  }

  .text-box h2 {
    font-size: 20px;
  }

  .hero-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ====================== Banner Section ====================== */
.banner {
  background: linear-gradient(150deg, #f0f0f0, #ffdfe8);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 20px;
}

.banner h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.banner p {
  font-size: 20px;
  max-width: 700px;
}

.banner img {
  position: absolute;
  right: 35%;
  top: 10%;
  width: 120px;
}

@media (max-width: 768px) {
  .banner h1 {
    font-size: 32px;
  }

  .banner p {
    font-size: 16px;
  }

  .banner img {
    right: 10%;
    top: 5%;
    width: 80px;
  }
}

/* ====================== Main Grid Section ====================== */
.main-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 4rem 2rem;
  background-color: #f8f6f6;
}

.image-block img {
  width: 100%;
  border-radius: 8px;
}

.text-block,
.text-block-1 {
  padding: 2rem;
}

.text-block h2,
.text-block-1 h2 {
  font-size: 2rem;
  color: #905691;
  margin-bottom: 20px;
}

.text-block h4,
.text-block-1 h4 {
  font-size: 1.25rem;
  color: #a98694;
  margin-bottom: 10px;
}

.text-block p,
.text-block-1 p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.light-bg {
  background-color: #f0f0f0;
}

.dark-bg {
  background-color: #f8f6f6;
  color: white;
}

.btn {
  background: linear-gradient(to bottom left, #f0f0f0, #e090a6);
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
}

/* Main Grid Responsive */
@media (max-width: 900px) {
  .main-grid {
    grid-template-columns: 1fr;
  }
}

/* ====================== Team Section ====================== */
.team-section {
  text-align: center;
  padding: 80px 20px 40px;
}

.team-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.team-section h1 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #905691;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 30px;
}

.team-member {
  text-align: center;
  width: 140px;
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, #c0c0c0, #ffc5f0);
}

.team-member h3 {
  font-size: 16px;
  margin-top: 10px;
}

.team-member p {
  font-size: 13px;
}

/* ====================== Impact Section ====================== */
.our_impact {
  background-color: #f8f8f8;
  padding: 50px 20px;
  text-align: center;
}

.our_impact h2 {
  font-size: 48px;
  margin-bottom: 40px;
}

.division {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.numbers {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  text-align: center;
}

.numbers h3 {
  font-size: 64px;
  color: #2a5d72;
  margin-bottom: 10px;
}

.numbers h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.numbers p {
  font-size: 14px;
}

/* ================= Mobile View Only (max 768px) ================= */
@media (max-width: 768px) {
  .division {
    flex-wrap: nowrap;           /* keep all 3 in one row */
    justify-content: space-between;
    gap: 10px;
  }

  .numbers {
    flex: 1 1 30%;                /* fit 3 in one line */
    min-width: auto;
    max-width: none;
    padding: 0 5px;
  }

  .numbers h3 {
    font-size: 36px;
  }

  .numbers h4 {
    font-size: 16px;
  }

  .numbers p {
    font-size: 11px;
  }

  .our_impact h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
}


/* ====================== General Section ====================== */
/* .section {
  display: flex;
  align-items: center;
  min-height: 60vh;
  padding: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.section:nth-child(odd) {
  background-color: #fbf4f4;
}

.section:nth-child(even) {
  background-color: #f0f0f0;
}

.text-content,
.image-content {
  flex: 1;
  min-width: 250px;
}

.text-content h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 16px;
  line-height: 1.5;
}

.image-content img {
  max-width: 90%;
  border-radius: 10px;
} */
/* Footer */
.custom-footer {
  background: linear-gradient(to bottom right, #111827, #1f2937);
  color: white;
  padding: 60px 20px;
  margin-top: 80px;
  font-family: 'Poppins', sans-serif;
}

.footer-grid {
  display: grid;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-block h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.footer-block a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.footer-block a:hover {
  color: #ffffff;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 28px;
  margin-top: 15px;
}

.social-icons a {
  transition: color 0.3s ease;
}

.social-icons a.facebook { color: #3b82f6; }
.social-icons a.linkedin { color: #60a5fa; }
.social-icons a.meta     { color: #ffffff; }
.social-icons a.instagram { color: #f472b6; }

.social-icons a:hover {
  color: #ffffff;
}
